From 1e49d49a3eb67436519a64b4435855602d1ad3ad Mon Sep 17 00:00:00 2001 From: Federico Mena Quintero Date: Mon, 20 Oct 2003 20:17:35 +0000 Subject: [PATCH] New utility function. (gtk_file_system_gnome_vfs_get_folder): Use 2003-10-20 Federico Mena Quintero * gtkfilesystemgnomevfs.c (folder_child_new): New utility function. (gtk_file_system_gnome_vfs_get_folder): Use folder_child_new(). (gtk_file_folder_gnome_vfs_get_info): Likewise. (directory_load_callback): Likewise. (monitor_callback): Likewise. * TODO: Removed the item about factoring out the code that creates FolderChild structures. --- gtk/gtkfilesystemunix.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk/gtkfilesystemunix.c b/gtk/gtkfilesystemunix.c index 629337ee8a..ded5389ceb 100644 --- a/gtk/gtkfilesystemunix.c +++ b/gtk/gtkfilesystemunix.c @@ -548,6 +548,7 @@ gtk_file_system_unix_add_bookmark (GtkFileSystem *file_system, const GtkFilePath *path, GError **error) { + /* FIXME: Implement as a really simple ~/.gtk-bookmarks */ g_set_error (error, GTK_FILE_SYSTEM_ERROR, GTK_FILE_SYSTEM_ERROR_FAILED, @@ -560,6 +561,7 @@ gtk_file_system_unix_remove_bookmark (GtkFileSystem *file_system, const GtkFilePath *path, GError **error) { + /* FIXME: Implement as a really simple ~/.gtk-bookmarks */ g_set_error (error, GTK_FILE_SYSTEM_ERROR, GTK_FILE_SYSTEM_ERROR_FAILED, @@ -570,6 +572,7 @@ gtk_file_system_unix_remove_bookmark (GtkFileSystem *file_system, static GSList * gtk_file_system_unix_list_bookmarks (GtkFileSystem *file_system) { + /* FIXME: Implement as a really simple ~/.gtk-bookmarks */ return NULL; } -- 2.30.2